cody - HTMLify profile

cody
4270 Files
633444 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/185 - Insect_Catching_Game
# Insect-Catching Game
## A well-designed interesting game where you can play with your favourite insect and catch it to get the most scores.
<br><br>

# Let we selected Fly :--

## A well-designed interesting game where you can play with your favourite insect and catch it to get the most scores.
<br><br>

# Let we selected Fly :--

@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: #516dff;
* {
box-sizing: border-box;
}
body {
background-color: #516dff;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Catch The Insect</title>
</head>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Catch The Insect</title>
</head>
const screens = document.querySelectorAll('.screen');
const choose_insect_btns = document.querySelectorAll('.choose-insect-btn');
const start_btn = document.getElementById('start-btn')
const game_container = document.getElementById('game-container')
const timeEl = document.getElementById('time')
const scoreEl = document.getElementById('score')
const message = document.getElementById('message')
let seconds = 0
const choose_insect_btns = document.querySelectorAll('.choose-insect-btn');
const start_btn = document.getElementById('start-btn')
const game_container = document.getElementById('game-container')
const timeEl = document.getElementById('time')
const scoreEl = document.getElementById('score')
const message = document.getElementById('message')
let seconds = 0